home *** CD-ROM | disk | FTP | other *** search
/ Virtual Top Model / Virtual Top Model - Disc 1.iso / modulos / intro.dxr / 00035.ls < prev    next >
Encoding:
Text File  |  1997-04-02  |  476 b   |  25 lines

  1. on exitFrame
  2.   if the movieTime of sprite 5 < 5575 then
  3.     go(the frame)
  4.   else
  5.     set the movieRate of sprite 5 to 0
  6.     unloadMember("clip-vtm")
  7.     go("stars")
  8.   end if
  9. end
  10.  
  11. on mouseDown
  12.   global bPrimeraVez, bSalto
  13.   set bSalto to 1
  14.   set the movieRate of sprite 5 to 0
  15.   unloadMember("clip-vtm")
  16.   if bPrimeraVez then
  17.     go("stars")
  18.   else
  19.     set the visible of sprite 5 to 0
  20.     updateStage()
  21.     set the visible of sprite 5 to 1
  22.     go("codigo salto")
  23.   end if
  24. end
  25.